Please ask about problems and questions regarding this tutorial on answers.ros.org. Don't forget to include in your question the link to this page, the versions of your OS & ROS, and also add appropriate tags. |
Enabling and disabling autostart
Description: Enabling and disabling autostartKeywords: Copernicus
Tutorial Level: BEGINNER
Copernicus is configured to run bring-up on boot, the booting LED indicator will show the following sequence:
- If successfully initialize,
- "Red - White blinking - Green"
- Copernicus retry to initialize by repeating this sequence until initialization is successful
- "Red - White Blinking - Red"
To disable the bringup background service:
- Stop the service by running
$ sudo systemctl stop robotstart.service
- Disable the service
$ sudo systemctl disable robotstart.service
To re-enable the service:
- Enable the service:
$ sudo systemctl enable robotstart.service
- Restart the service
$ sudo systemctl start robotstart.service
To edit the background service, edit the autostart.sh file under copernicus_ws/src/copernicus folder.